home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / dm3_src.zip / DMCFG.H < prev    next >
Text File  |  1990-04-08  |  5KB  |  93 lines

  1. /* ************************************************************************* */
  2. /*                                                                           */
  3. /*                 D O O R W A R E   I / O   L I B R A R Y                   */
  4. /*                                                                           */
  5. /*                          For Mycrosoft & Turbo C                          */
  6. /*                                                                           */
  7. /* ************************************************************************* */
  8. /*                                                                           */
  9. /*      This module contains equates to control the compilation of the       */
  10. /*      DM library.                                                          */
  11. /*                                                                           */
  12. /*                                                                           */
  13. /*                                                                           */
  14. /*                                                                           */
  15. /*                                                                           */
  16. /* ************************************************************************* */
  17.  
  18.  
  19.  
  20. /* ************************************************************************* */
  21. /*                            PROGRAM HISTORY                                */
  22. /* ************************************************************************* */
  23. /* 06/20/87     Version 1.00                                                 */
  24. /* 01/01/90     Version 3.00                                                 */
  25. /*                                                                           */
  26. /*                                                                           */
  27. /*                                                                           */
  28. /* ************************************************************************* */
  29.  
  30.  
  31.  
  32. /*
  33.  * Define Compiler in use
  34.  */
  35.  
  36. #define MSC             1                       /* Microsoft C               */
  37. #define BTC             2                       /* Boreland Turbo C          */
  38.  
  39. #define COMPILER        MSC
  40.  
  41.  
  42.  
  43. /*
  44.  * Standard Includes
  45.  */
  46.  
  47. #if COMPILER == MSC
  48.  
  49. #include <stdio.h>                              /* standard header file      */
  50. #include <stdlib.h>                             /* standard library interface */
  51. #include <stdarg.h>                             /* standard library interface */
  52. #include <string.h>                             /* string functions          */
  53. #include <conio.h>                              /* keyboard functions        */
  54. #include <fcntl.h>                              /* file control definitions  */
  55. #include <types.h>                              /* type definitions          */
  56. #include <stat.h>                               /* stat definitions          */
  57. #include <share.h>                              /* file sharing definitions  */
  58. #include <io.h>                                 /* file i/o definitions      */
  59. #include <dos.h>                                /* dos functions             */
  60. #include <errno.h>                              /* error definitions         */
  61. #include <memory.h>                             /* memory functions          */
  62. #include <process.h>                            /* process functions         */
  63. #include <time.h>                               /* time functions            */
  64.  
  65. #endif
  66.  
  67.  
  68.  
  69. #if COMPILER == BTC
  70.  
  71. #include <stdio.h>                              /* standard header file      */
  72. #include <stdlib.h>                             /* standard library interface */
  73. #include <stdarg.h>                             /* standard library interface */
  74. #include <string.h>                             /* string functions          */
  75. #include <conio.h>                              /* keyboard functions        */
  76. #include <fcntl.h>                              /* file control definitions  */
  77. #include <sys\types.h>                          /* type definitions          */
  78. #include <sys\stat.h>                           /* stat definitions          */
  79. #include <share.h>                              /* file sharing definitions  */
  80. #include <io.h>                                 /* file i/o definitions      */
  81. #include <dos.h>                                /* dos functions             */
  82. #include <errno.h>                              /* error definitions         */
  83. #include <mem.h>                                /* memory functions          */
  84. #include <process.h>                            /* process functions         */
  85. #include <time.h>                               /* time functions            */
  86.  
  87. #endif
  88.  
  89.  
  90.  
  91.  
  92.  
  93.